home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / nameless.swf / scripts / DefineSprite_1872 / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  418 b   |  23 lines

  1. _X = _root.cam._x;
  2. _Y = _root.cam._y;
  3. _height = _root.cam._height;
  4. _width = _root.cam._width;
  5. var onEnterFrame = function()
  6. {
  7.    _X = _root.cam._x;
  8.    _Y = _root.cam._y;
  9.    if(_root.level == 1)
  10.    {
  11.       sublevel = "LET\'S BUILD THINGS!";
  12.    }
  13.    level = "Level " + _root.level;
  14.    if(_root.level == 6)
  15.    {
  16.       bosshp._visible = true;
  17.    }
  18.    else
  19.    {
  20.       bosshp._visible = false;
  21.    }
  22. };
  23.